ReadOneToManyKeyValueRepo

interface ReadOneToManyKeyValueRepo<Key, Value> : Repo

Functions

Link copied to clipboard
abstract suspend fun contains(k: Key): Boolean
abstract suspend fun contains(k: Key, v: Value): Boolean
Link copied to clipboard
abstract suspend fun count(): Long
abstract suspend fun count(k: Key): Long
Link copied to clipboard
abstract suspend fun get(k: Key, pagination: Pagination, reversed: Boolean = false): PaginationResult<Value>
Link copied to clipboard
open suspend fun getAll(reverseLists: Boolean = false): Map<Key, List<Value>>

WARNING!!! THIS METHOD PROBABLY IS NOT EFFICIENT, USE WITH CAUTION

open suspend fun getAll(k: Key, reversed: Boolean = false): List<Value>
Link copied to clipboard
abstract suspend fun keys(pagination: Pagination, reversed: Boolean = false): PaginationResult<Key>
abstract suspend fun keys(v: Value, pagination: Pagination, reversed: Boolean = false): PaginationResult<Key>

Inheritors

ReadKeyValuesCacheRepo
Link copied to clipboard
OneToManyKeyValueRepo
Link copied to clipboard
MapReadOneToManyKeyValueRepo
Link copied to clipboard
MapOneToManyKeyValueRepo
Link copied to clipboard
MapperReadOneToManyKeyValueRepo
Link copied to clipboard
MapperOneToManyKeyValueRepo
Link copied to clipboard
KtorOneToManyKeyValueRepo
Link copied to clipboard
KtorReadOneToManyKeyValueRepo
Link copied to clipboard
Link copied to clipboard

Extensions

withMapper
Link copied to clipboard
inline fun <FromKey, FromValue, ToKey, ToValue> ReadOneToManyKeyValueRepo<ToKey, ToValue>.withMapper(crossinline keyFromToTo: suspend FromKey.() -> ToKey = { this as ToKey }, crossinline valueFromToTo: suspend FromValue.() -> ToValue = { this as ToValue }, crossinline keyToToFrom: suspend ToKey.() -> FromKey = { this as FromKey }, crossinline valueToToFrom: suspend ToValue.() -> FromValue = { this as FromValue }): ReadOneToManyKeyValueRepo<FromKey, FromValue>
inline fun <FromKey, FromValue, ToKey, ToValue> ReadOneToManyKeyValueRepo<ToKey, ToValue>.withMapper(crossinline keyFromToTo: suspend FromKey.() -> ToKey = { this as ToKey }, crossinline valueFromToTo: suspend FromValue.() -> ToValue = { this as ToValue }, crossinline keyToToFrom: suspend ToKey.() -> FromKey = { this as FromKey }, crossinline valueToToFrom: suspend ToValue.() -> FromValue = { this as FromValue }): ReadOneToManyKeyValueRepo<FromKey, FromValue>
inline fun <FromKey, FromValue, ToKey, ToValue> ReadOneToManyKeyValueRepo<ToKey, ToValue>.withMapper(crossinline keyFromToTo: suspend FromKey.() -> ToKey = { this as ToKey }, crossinline valueFromToTo: suspend FromValue.() -> ToValue = { this as ToValue }, crossinline keyToToFrom: suspend ToKey.() -> FromKey = { this as FromKey }, crossinline valueToToFrom: suspend ToValue.() -> FromValue = { this as FromValue }): ReadOneToManyKeyValueRepo<FromKey, FromValue>